home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-17 | 457 b | 21 lines | [TEXT/dosa] |
- // Facade.java : this is a Java source code file for the program Facade.
- // Copyright 1998, Andrew S. Downs
- // andrew.downs@tulane.edu
- //
- // This source code is distributed as freeware.
- // Just keep this author information in the file. Enjoy!
-
- import java.io.*;
-
- public class Facade implements Serializable {
- Facade() {
- // Get things rolling...
- Finder f = new Finder();
- }
-
- public static void main( String args[] ) {
- Facade f = new Facade();
- }
- }
-
-